home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 010 / pacman.doc < prev    next >
Text File  |  1985-06-11  |  2KB  |  49 lines

  1.  
  2. (* 
  3.    The file PACMAN.COM has been patched for the BIG BOARD Video,
  4.    using E = up / X = down / S = left / D = right       
  5.    ......Patched for Big Board by Gary Kaufman (215) 735-2841                 
  6.  *)
  7.             
  8.   The compiled version of PACMAN (PACMAN.COM) can be easily 
  9. patched to any terminal that has the following characteristics:
  10.  
  11. 1.  A CLEAR SCREEN command of 2 characters of less
  12.  
  13. 2.  A CURSOR ADDRESSING command that is of the form:
  14.      <ESC> <char> <ROW> <COLUMN>    with offset = 32
  15.  
  16. 3.  A CURSOR ON and CURSOR OFF command that is of the form:
  17.      <char> <char> <char>
  18.     (This is not necessary however)
  19.  
  20.  
  21.   The points to patch for CLEAR SCREEN are:
  22. Address: 2FDAH ====> First character    (Currently 1AH)
  23.          2FDBH ====> Second character   (Currently 00H)
  24.  
  25.   The points to patch for CURSOR ADDRESSING are:
  26. Address: 37F3H ====> First character    (Currently ESC)
  27.      37FCH ====> Second character   (Currently "=")
  28.  
  29.   The points to patch for CURSOR ON are:
  30. Address: 3D9EH ====> First character    (Currently 00H)
  31.          3D9FH ====> Second character   (Currently 00H)
  32.          3DA0H ====> Third character    (Currently 00H)
  33.  
  34.   The points to patch for CURSOR OFF are:
  35. Address: 27DCH ====> First character    (Currently 00H)
  36.          27DDH ====> Second character   (Currently 00H)
  37.          27DEH ====> Third character    (Currently 00H)
  38.  
  39.   The direction keys are located:
  40. Address: 347BH ====> Move LEFT          (Currently "S")
  41.          34ABH ====> Move DOWN          (Currently "X")
  42.          3493H ====> Move UP            (Currently "E")
  43.          3487H ====> Move RIGHT         (Currently "D")
  44.  
  45.   The QUIT character ("Q") is located at address 34E7H.
  46.  
  47.   This version is set-up to work with a BIG BOARD.      
  48.  
  49.